/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.container a {
    text-decoration: none;
    
}

header {
    background-color: #004b8d;
    color: white;
    padding: 1rem 0;
    position: relative;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

header .container img {
    float: left;
    max-height: 60px; /* Adjust the height as needed */
    margin-right: 10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 1rem 0 0;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-left: auto;
   
}

.social-links a img {
    width: 32px;
    height: 32px;
}

#language-selector {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
}

.section {
    padding: 2rem 0;
    background-color: #f4f4f4;
    margin: 1rem 0;
}

.section h2 {
    text-align: center;
    color: #004b8d;
}

.countries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.country {
    text-align: center;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.country img {
    max-width: 100%;
    border-radius: 10px;
}

.mobilities {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobilities a {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #004b8d;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
}

.mobilities img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Aligning image to the right */
.school-content, .contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.contact-info > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10px;
}

.contact-info > .container img {
    width: 100%;
    border-radius: 8px;
}

footer {
    background: #002f5d;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}